projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2f020e8
)
* lisp/emacs-lisp/seq.el (seq-difference): Fix typo in docstring
author
Nicolas Richard
<youngfrog@members.fsf.org>
Tue, 30 Jun 2015 07:31:03 +0000
(09:31 +0200)
committer
Nicolas Richard
<youngfrog@members.fsf.org>
Wed, 1 Jul 2015 22:58:16 +0000
(
00:58
+0200)
lisp/emacs-lisp/seq.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/seq.el
b/lisp/emacs-lisp/seq.el
index 68d40b99f705d4d810c537c662b4e36ecb81bfd2..9eed36eb68c8dfdad320002a44cc39c4107a7677 100644
(file)
--- a/
lisp/emacs-lisp/seq.el
+++ b/
lisp/emacs-lisp/seq.el
@@
-279,7
+279,7
@@
Equality is defined by TESTFN if non-nil or by `equal' if nil."
'()))
(defun seq-difference (seq1 seq2 &optional testfn)
- "Return a list of th elements that appear in SEQ1 but not in SEQ2.
+ "Return a list of th
e
elements that appear in SEQ1 but not in SEQ2.
Equality is defined by TESTFN if non-nil or by `equal' if nil."
(seq-reduce (lambda (acc elt)
(if (not (seq-contains-p seq2 elt testfn))